home *** CD-ROM | disk | FTP | other *** search
Text File | 1987-02-01 | 899 b | 46 lines | [TEXT/ttxt] |
-
-
- /rot
- { 3 -1 roll
- } def
- /genRand % returns a random number between 0 and 1
- { rand % returns 0 < rand < 1
- 100 mod
- 100 div
- } def
- % returns a random (x,y) value on the page
- /randPoint
- { 612 genRand mul
- 792 genRand mul
- }def
- % makes the bubble pattern by randomly drawing circles
- % throughout the page
- /bubble
- {0 0 moveto
- 70 {placeCircle} repeat
- }def
- % draws a circle with the given radius at the (x,y) position
- % (radius, (x,y)-center)
- /circle
- {rot
- 0 360 arc
- genRand 0.5 gt % randomly decides whether to fill
- {genRand setgray % in the circle or not
- fill
- 0 setgray
- } if
- stroke
- }def
- % place a circle somewhere on the page
- % it decides randomly how big the circle will be
- /placeCircle
- {100 genRand mul
- randPoint circle
- }def
- 0 0 moveto
- bubble
- showpage
-
- Download complete. Turn off Capture File.
-
- Download another file (Y/N)?